home *** CD-ROM | disk | FTP | other *** search
- /* Prototypes for functions defined in Modules/mathmodule.c */
-
- #ifndef __SASC
- static PyObject * math_1(PyObject * args,double (* func)(double ));
- static PyObject * math_2(PyObject * args,double (* func)(double , double ));
- #endif
- static PyObject * math_error(void);
- static PyObject * math_acos(PyObject * self,PyObject * args);
- static PyObject * math_asin(PyObject * self,PyObject * args);
- static PyObject * math_atan(PyObject * self,PyObject * args);
- static PyObject * math_atan2(PyObject * self,PyObject * args);
- static PyObject * math_ceil(PyObject * self,PyObject * args);
- static PyObject * math_cos(PyObject * self,PyObject * args);
- static PyObject * math_cosh(PyObject * self,PyObject * args);
- static PyObject * math_exp(PyObject * self,PyObject * args);
- static PyObject * math_fabs(PyObject * self,PyObject * args);
- static PyObject * math_floor(PyObject * self,PyObject * args);
- static PyObject * math_fmod(PyObject * self,PyObject * args);
- static PyObject * math_hypot(PyObject * self,PyObject * args);
- static PyObject * math_log(PyObject * self,PyObject * args);
- static PyObject * math_log10(PyObject * self,PyObject * args);
- static PyObject * math_pow(PyObject * self,PyObject * args);
- static PyObject * math_sin(PyObject * self,PyObject * args);
- static PyObject * math_sinh(PyObject * self,PyObject * args);
- static PyObject * math_sqrt(PyObject * self,PyObject * args);
- static PyObject * math_tan(PyObject * self,PyObject * args);
- static PyObject * math_tanh(PyObject * self,PyObject * args);
- static PyObject * math_frexp(PyObject * self,PyObject * args);
- static PyObject * math_ldexp(PyObject * self,PyObject * args);
- static PyObject * math_modf(PyObject * self,PyObject * args);
-